home *** CD-ROM | disk | FTP | other *** search
/ MIDICraft's MIDINET CD-ROM / MIDICraft's MIDINET CD-ROM.iso / DOSUTILS / KORG / FILEI3.HPP < prev    next >
C/C++ Source or Header  |  1996-10-26  |  371b  |  15 lines

  1. #ifndef __FILEI3__
  2. #define __FILEI3__
  3.  
  4. #include <stdio.h>
  5.  
  6. int code7to8(unsigned char* s7, int len7, unsigned char* s8);
  7. int code8to7(unsigned char* s8, int len8, unsigned char* s7);
  8.  
  9. int loaddata7(FILE* f, int pos, int len, unsigned char* data7);
  10.  
  11. // convert codes to bytes and write to file
  12. int savedata8(FILE* f, unsigned char* data8, int len8);
  13.  
  14. #endif
  15.